home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / pppconfig.postinst < prev    next >
Text File  |  2008-05-27  |  410b  |  18 lines

  1. #!/bin/sh
  2.  
  3. # Postinst for pppconfig by John Hasler 1999-2005
  4. # Any possessor of a copy of this program may treat it as if it
  5. # were in the public domain.  I waive all rights.
  6.  
  7. set -e
  8.  
  9. if [ -x /usr/bin/update-menus ] ; then
  10.     /usr/bin/update-menus
  11. fi
  12. if dpkg --compare-versions "$2" lt "2.3.11ubuntu5"; then
  13.     update-rc.d -f dns-clean remove >/dev/null
  14. fi
  15. update-rc.d dns-clean start 55 S . >/dev/null
  16.  
  17. exit 0
  18.